home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1990: Night of the Living Disc
/
Night of the Living Disc.hdv
/
Dev.CD.5
/
Tools
/
APW.Interfaces
/
CInclude
/
Math.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-03-01
|
430 b
|
24 lines
|
[04] ASCII Text (0x0000)
/*
math.h - math supplement to SANE
Copyright Apple Computer, Inc. 1985
All rights reserved.
*/
#ifndef __MATH__
#define __MATH__
#ifndef __SANE__
#include <sane.h>
#endif
extended atof(),frexp(),ldexp(),modf();
#define log10(x) (log(x)/log(10.0))
#define pow(x,y) power(x,y)
extended floor(),ceil(),fmod();
extended hypot();
extended sinh(),cosh(),tanh();
extended asin(),acos(),atan2();
char *ecvt();
char *fcvt();
#endif